home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Harvest C 1.3 / Source Code / CHarvestPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  465 b   |  22 lines  |  [TEXT/ALFA]

  1. /****
  2.  * CHarvestPane.h
  3.  *
  4.  *    Pane class for a typical application.
  5.  *
  6.  ****/
  7.  
  8. #define _H_CHarvestPane            /* Include this file only once */
  9. #include <CTable.h>
  10.  
  11. class CScrollPane;
  12. class CTableLabels;
  13.  
  14. struct CHarvestPane : CTable {
  15.                                     /** Contruction/Destruction **/
  16.     void        IHarvestPane(CScrollPane *anEnclosure, CBureaucrat *aSupervisor);
  17.  
  18.     virtual void GetCellText( Cell aCell, short availableWidth, StringPtr itsText);
  19.     virtual void    Draw( Rect *area);
  20. };
  21.     
  22.